.pdf-section {
  padding: 20px;
  background: #f4f6f9;
}

/* Title center */
.section-title {
  text-align: center;
  margin: 25px 0 15px;
  font-size: 24px;
  color: #0b2e59;
  font-weight: 700;
}

/* Grid */
.pdf-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
}

/* FULL SCREEN inside frame */
.pdf-row iframe {
  width: 100%;
  height: 80vh; /* 👈 makes it full screen feel */
  border: none;
  border-radius: 8px;
}